home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / graphics / getoutlinepen.c < prev    next >
C/C++ Source or Header  |  1996-10-31  |  956b  |  53 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: getoutlinepen.c,v 1.3 1996/10/31 11:13:07 aros Exp $     $Log
  4.  
  5.     Desc: Graphics function GetOutlinePen()
  6.     Lang: english
  7. */
  8. #include "graphics_intern.h"
  9.  
  10. /*****************************************************************************
  11.  
  12.     NAME */
  13.     #include <graphics/rastport.h>
  14.     #include <clib/graphics_protos.h>
  15.  
  16.     AROS_LH1(ULONG, GetOutlinePen,
  17.  
  18. /*  SYNOPSIS */
  19.     AROS_LHA(struct RastPort *, rp, A0),
  20.  
  21. /*  LOCATION */
  22.     struct GfxBase *, GfxBase, 146, Graphics)
  23.  
  24. /*  FUNCTION
  25.  
  26.     INPUTS
  27.  
  28.     RESULT
  29.  
  30.     NOTES
  31.  
  32.     EXAMPLE
  33.  
  34.     BUGS
  35.  
  36.     SEE ALSO
  37.  
  38.     INTERNALS
  39.  
  40.     HISTORY
  41.     29-10-95    digulla automatically created from
  42.                 graphics_lib.fd and clib/graphics_protos.h
  43.  
  44. *****************************************************************************/
  45. {
  46.     AROS_LIBFUNC_INIT
  47.     AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
  48.  
  49.     return rp->AOlPen;
  50.  
  51.     AROS_LIBFUNC_EXIT
  52. } /* GetOutlinePen */
  53.